Seems commit
7b42d4feda5448cf4f929aeb79f56ba9e524ac39 makes
GtkSpinner a direct subclass of GtkWidget but forgets to
update the header file to include gtkwidget.h instead and
declare the instance and class structures properly (assuming
this was just a missed file in the commit).
#ifndef __GTK_SPINNER_H__
#define __GTK_SPINNER_H__
-#include <gtk/gtkdrawingarea.h>
+#include <gtk/gtkwidget.h>
G_BEGIN_DECLS
struct _GtkSpinner
{
- GtkDrawingArea parent;
+ GtkWidget parent;
/* <private> */
GtkSpinnerPrivate *priv;
struct _GtkSpinnerClass
{
- GtkDrawingAreaClass parent_class;
+ GtkWidgetClass parent_class;
};
GType gtk_spinner_get_type (void) G_GNUC_CONST;